home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 February / PCWorld_2006-02_cd.bin / software / vyzkuste / triky / triky.exe / httrack-3.33.exe / {app} / src / htsserver.h < prev    next >
Text File  |  2005-02-05  |  7KB  |  261 lines

  1. /* ------------------------------------------------------------ */
  2. /*
  3. HTTrack Website Copier, Offline Browser for Windows and Unix
  4. Copyright (C) Xavier Roche and other contributors
  5.  
  6. This program is free software; you can redistribute it and/or
  7. modify it under the terms of the GNU General Public License
  8. as published by the Free Software Foundation; either version 2
  9. of the License, or any later version.
  10.  
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with this program; if not, write to the Free Software
  18. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  19.  
  20.  
  21. Important notes:
  22.  
  23. - We hereby ask people using this source NOT to use it in purpose of grabbing
  24. emails addresses, or collecting any other private information on persons.
  25. This would disgrace our work, and spoil the many hours we spent on it.
  26.  
  27.  
  28. Please visit our Website: http://www.httrack.com
  29. */
  30.  
  31.  
  32. /* ------------------------------------------------------------ */
  33. /* File: Mini-server                                            */
  34. /* Author: Xavier Roche                                         */
  35. /* ------------------------------------------------------------ */
  36.  
  37. // Fichier intercepteur d'URL .h
  38.  
  39. #ifndef HTS_SERVER_DEFH
  40. #define HTS_SERVER_DEFH 
  41.  
  42. #include "htsbasenet.h"
  43.  
  44. /* String */
  45. #include "htsstrings.h"
  46.  
  47.  
  48. // Fonctions
  49. void socinput(T_SOC soc,char* s,int max);
  50. T_SOC smallserver_init_std(int* port_prox,char* adr_prox);
  51. T_SOC smallserver_init(int* port,char* adr);
  52. int smallserver(T_SOC soc,char* url,char* method,char* data, char* path);
  53.  
  54. #define CATCH_RESPONSE \
  55.   "HTTP/1.0 200 OK\r\n"\
  56.   "Content-type: text/html\r\n"\
  57.   "\r\n"\
  58.   "<!-- Generated by HTTrack Website Copier -->\r\n"\
  59.   "<HTML><HEAD>\r\n"\
  60.   "<TITLE>Link caught!</TITLE>\r\n"\
  61.   "<SCRIPT LANGUAGE=\"Javascript\">\r\n"\
  62.   "<!--\r\n"\
  63.   "function back() {\r\n"\
  64.   "  history.go(-1);\r\n"\
  65.   "}\r\n"\
  66.   "// -->\r\n"\
  67.   "</SCRIPT>\r\n"\
  68.   "</HEAD>\r\n"\
  69.   "<BODY>\r\n"\
  70.   "<H2>Link captured into HTTrack Website Copier, you can now restore your proxy preferences!</H2>\r\n"\
  71.   "<BR><BR>\r\n"\
  72.   "<H3><A HREF=\"javascript:back();\">Clic here to go back</A></H3>\r\n"\
  73.   "</BODY></HTML>"\
  74.   "<!-- Generated by HTTrack Website Copier -->\r\n"\
  75.   "\r\n"\
  76.  
  77. extern int NewLangStrSz;
  78. extern inthash NewLangStr;
  79. extern int NewLangStrKeysSz;
  80. extern inthash NewLangStrKeys;
  81. extern int NewLangListSz;
  82. extern inthash NewLangList;
  83.  
  84. /* Spaces: CR,LF,TAB,FF */
  85. #define  is_space(c)      ( ((c)==' ') || ((c)=='\"') || ((c)==10) || ((c)==13) || ((c)==9) || ((c)==12) || ((c)==11) || ((c)=='\'') )
  86. #define  is_realspace(c)  ( ((c)==' ')                || ((c)==10) || ((c)==13) || ((c)==9) || ((c)==12) || ((c)==11)                )
  87. #define  is_taborspace(c) ( ((c)==' ')                                          || ((c)==9)                             )
  88. #define  is_quote(c)      (               ((c)=='\"')                                                    || ((c)=='\'') )
  89. #define  is_retorsep(c)   (                              ((c)==10) || ((c)==13) || ((c)==9)                                          )
  90.  
  91. extern int smallserver_setkey(char* key, char* value);
  92. extern int smallserver_setkeyint(char* key, LLint value);
  93. extern int smallserver_setkeyarr(char* key, int id, char* key2, char* value);
  94.  
  95.  
  96. /* Language files */
  97. static int htslang_load(char* limit_to, char* apppath);
  98. static void conv_printf(char* from,char* to);
  99. static void LANG_DELETE(void);
  100. static void LANG_INIT(char* path);
  101. static int LANG_T(char* path, int l);
  102. static int QLANG_T(int l);
  103. static char* LANGSEL(char* name);
  104. static char* LANGINTKEY(char* name);
  105. static int LANG_SEARCH(char* path, char* iso);
  106. static int LANG_LIST(char* path, char* buffer);
  107.  
  108. int htslang_init(void);
  109. int htslang_uninit(void);
  110.  
  111. /* Static definitions */
  112.  
  113. static char* gethomedir(void);
  114. static int linput_cpp(FILE* fp,char* s,int max);
  115. static int linput_trim(FILE* fp,char* s,int max);
  116. static char* concat(const char* a,const char* b);
  117. static int fexist(char* s);
  118. static int linput(FILE* fp,char* s,int max);
  119. static int linputsoc_t(T_SOC soc, char* s, int max, int timeout);
  120.  
  121. static char* gethomedir(void) {
  122.   char* home = getenv( "HOME" );
  123.   if (home)
  124.     return home;
  125.   else
  126.     return ".";
  127. }
  128. static int linput_cpp(FILE* fp,char* s,int max) {
  129.   int rlen=0;
  130.   s[0]='\0';
  131.   do {
  132.     int ret;
  133.     if (rlen>0)
  134.     if (s[rlen-1]=='\\')
  135.       s[--rlen]='\0';      // couper \ final
  136.     // lire ligne
  137.     ret=linput_trim(fp,s+rlen,max-rlen);
  138.     if (ret>0)
  139.       rlen+=ret;
  140.   } while((s[max(rlen-1,0)]=='\\') && (rlen<max));
  141.   return rlen;
  142. }
  143. // copy of concat
  144. typedef struct concat_strc {
  145.   char buff[16][HTS_URLMAXSIZE*2*2];
  146.   int rol;
  147. } concat_strc;
  148. static char* concat(const char* a,const char* b) {
  149.   static concat_strc* strc = NULL;
  150.   if (strc == NULL) {
  151.     strc = (concat_strc*) calloc(16, sizeof(concat_strc));
  152.   }
  153.   strc->rol=((strc->rol+1)%16);    // roving pointer
  154.   strcpybuff(strc->buff[strc->rol],a);
  155.   if (b) strcatbuff(strc->buff[strc->rol],b);
  156.   return strc->buff[strc->rol];
  157. }
  158.  
  159. static int fexist(char* s) {
  160.   struct stat st;
  161.   memset(&st, 0, sizeof(st));
  162.   if (stat(s, &st) == 0) {
  163.     if (S_ISREG(st.st_mode)) {
  164.       return 1;
  165.     }
  166.   }
  167.   return 0;
  168. static int linput(FILE* fp,char* s,int max) {
  169.   int c;
  170.   int j=0;
  171.   do {
  172.     c=fgetc(fp);
  173.     if (c!=EOF) {
  174.       switch(c) {
  175.         case 13: break;  // sauter CR
  176.         case 10: c=-1; break;
  177.         case 0: case 9: case 12: break;  // sauter ces caractΦres
  178.         default: s[j++]=(char) c; break;
  179.       }
  180.     }
  181.   }  while((c!=-1) && (c!=EOF) && (j<(max-1)));
  182.   s[j]='\0';
  183.   return j;
  184. }
  185. static int linput_trim(FILE* fp,char* s,int max) {
  186.   int rlen=0;
  187.   char* ls=(char*) malloct(max+2);
  188.   s[0]='\0';
  189.   if (ls) {
  190.     char* a;
  191.     // lire ligne
  192.     rlen=linput(fp,ls,max);
  193.     if (rlen) {
  194.       // sauter espaces et tabs en fin
  195.       while( (rlen>0) && is_realspace(ls[max(rlen-1,0)]) )
  196.         ls[--rlen]='\0';
  197.       // sauter espaces en dΘbut
  198.       a=ls;
  199.       while((rlen>0) && ((*a==' ') || (*a=='\t'))) {
  200.         a++;
  201.         rlen--;
  202.       }
  203.       if (rlen>0) {
  204.         memcpy(s,a,rlen);      // can copy \0 chars
  205.         s[rlen]='\0';
  206.       }
  207.     }
  208.     //
  209.     freet(ls);
  210.   }
  211.   return rlen;
  212. }
  213.  
  214. static void unescapeini(char* s, String* tempo) {
  215.   int i;
  216.   char lastc=0;
  217.   for (i=0;i<(int) strlen(s);i++) {
  218.     if (s[i]=='%' && s[i+1]=='%') {
  219.       i++;
  220.       StringAddchar(*tempo, lastc = '%');
  221.     } else if (s[i]=='%') {
  222.       char hc;
  223.       i++;
  224.       hc = (char) ehex(s+i);
  225.       if (!is_retorsep(hc) || !is_retorsep(lastc)) {
  226.         StringAddchar(*tempo, lastc = (char) hc);
  227.       }
  228.       i++;    // sauter 2 caractΦres finalement
  229.     }
  230.     else
  231.       StringAddchar(*tempo, lastc = s[i]);
  232.   }
  233. }
  234.  
  235. #ifndef _WIN32
  236. #define fconv(a) (a)
  237. #define fconcat(a,b) concat(a,b)
  238. #endif
  239.  
  240. #ifdef _WIN32
  241. static char* __fconv(char* a) {
  242.   int i;
  243.   for(i=0;i<(int) strlen(a);i++)
  244.     if (a[i]=='/')  // convertir
  245.       a[i]='\\';
  246.   return a;
  247. }
  248. static char* fconcat(char* a,char* b) {
  249.   return __fconv(concat(a,b));
  250. }
  251. static char* fconv(char* a) {
  252.   return __fconv(concat(a,""));
  253. }
  254. #endif
  255.  
  256. #endif
  257.  
  258.  
  259.  
  260.